home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / info-service / www / src / midaswww-1.0 / SGMLMarkerTextP.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-16  |  1.4 KB  |  47 lines

  1. /*==================================================================*/
  2. /*                                                                  */
  3. /* SGMLMarkerTextObject                                             */
  4. /*                                                                  */
  5. /* T.Johnson - (TonyJ@Slacvx.Slac.Stanford.Edu)           June.92   */
  6. /*                                                                  */
  7. /* Defines a text segment for the SGMLHyper widget                  */
  8. /*                                                                  */
  9. /*==================================================================*/
  10.  
  11. #ifndef SGMLMARKERTEXTP_H
  12. #define SGMLMARKERTEXTP_H
  13.  
  14. #include "SGMLMarkerText.h"
  15. #include "SGMLTextP.h"
  16.  
  17. typedef struct _SGMLMarkerTextClassPart{
  18.  
  19.     int ignore;   /* no new class elements */
  20.  
  21. } SGMLMarkerTextClassPart;
  22.  
  23. typedef struct _SGMLMarkerTextClassRec{
  24.  
  25.     ObjectClassPart         object_class;
  26.     SGMLTextClassPart       sgml_text_class;
  27.     SGMLMarkerTextClassPart sgml_marker_text_class;
  28.  
  29. } SGMLMarkerTextClassRec, *SGMLMarkerTextObjectClass;
  30.  
  31. extern SGMLMarkerTextClassRec sGMLMarkerTextClassRec;
  32.  
  33. typedef struct _SGMLMarkerTextPart {
  34.  
  35.     Dimension column_align; 
  36.     Position  position; 
  37.  
  38. } SGMLMarkerTextPart;
  39.  
  40. typedef struct _SGMLMarkerTextRec {
  41.     ObjectPart             object;
  42.     SGMLTextPart           sgml_text;
  43.     SGMLMarkerTextPart     sgml_marker_text;
  44. } SGMLMarkerTextRec;
  45.  
  46. #endif SGMLMARKERTEXTP_H
  47.